0627a1f36bf786e93b4206295ce1c571f1ed0958,libs/sparkpost-lib/src/main/java/com/sparkpost/resources/ResourceWebhooks.java,ResourceWebhooks,create,#RestConnection#Webhook#,37

Before Change


	public static Response create(RestConnection conn, Webhook webhook) throws SparkPostException {

		String json = webhook.toJson();
		return conn.post("webhooks", json);
	}

	public static Response describe(RestConnection conn, String id, String timezone) throws SparkPostException {

After Change


	public static Response create(RestConnection conn, Webhook webhook) throws SparkPostException {

		String json = webhook.toJson();
		Response response = conn.post("webhooks", json);
		return response;
	}

	public static Response describe(RestConnection conn, String id, String timezone) throws SparkPostException {